home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Magazin: Amiga-CD 1998 February
/
Amiga-CD 1998 #2.iso
/
c
/
verzeichniskopieren
< prev
next >
Wrap
AmigaDOS Script File
|
1996-07-22
|
945b
|
30 lines
.KEY Verzeichnis/A,Zielname/A,Platz/A
.BRA [
.KET ]
set defaultdir "RAM:"
;
; Kopiert das angegebene Verzeichnis an einen Ort, den es erfragt
;
If not exists "[Verzeichnis]"
:c/requestchoice20 "Hinweis" "Verzeichnis [Verzeichnis] exisitiert nicht" "Oops - brich ab!" >NIL:
Else
:c/requestfile20 $defaultdir TITLE "Wohin kopieren?" WIDTH=300 HEIGHT=300 DRAWERSONLY SAVEMODE >ENV:auswahl[$$]
If not warn
:c/checkdevavail `getenv auswahl[$$]` [Platz]
if warn
:c/requestchoice20 >nil: Information "Nicht genug Platz vorhanden!" ok
else
Cd "[Verzeichnis]"
Cd >ENV:olddir[$$]
Cd `getenv auswahl[$$]`
C:Copy "$olddir[$$]" "[Zielname]" ALL CLONE QUIET
Cd "[Zielname]"
delete Steuerung#? QUIET FORCE >NIL:
Cd "$olddir[$$]"
:C/RequestChoice20 "Hinweis" "Verzeichnis kopiert" "OK" >NIL:
Endif
Endif
unsetenv auswahl[$$]
Endif